Socket
Socket
Sign inDemoInstall

tiny-css-prefixer

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tiny-css-prefixer

CSS prefixing helpers in less than 1KB


Version published
Weekly downloads
650
increased by0.46%
Maintainers
1
Weekly downloads
 
Created
Source

tiny-css-prefixer

Bare essentials CSS prefixing helpers in less than 1KB 🌈

version gzip size

Currently supports prefixing properties for most browsers as it makes sense. See SUPPORT.md for more information on which prefixes and transformations have been omitted.

The API is fairly straightforward and only consists of two functions, prefixProperty and prefixValue.

prefixProperty('margin'); // 0b000
prefixProperty('appearance'); // 0b110

prefixValue('color', 'palevioletred'); // 'palevioletred'
prefixValue('position', 'sticky'); // '-webkit-sticky, sticky'

prefixProperty returns a bitmap depending on which prefix should be applied:

  • 0b001 stands for -ms-
  • 0b010 stands for -moz-
  • 0b100 stands for -webkit

These are combined using a binary OR, so an example usage of the prefixProperty helper may look like the following:

const prefix = (prop, value) => {
  const flag = prefixProperty(prop);
  let css = `${prop}: ${value};\n`;
  if (flag & 0b001) css += `-ms-${css}`;
  if (flag & 0b010) css += `-moz-${css}`;
  if (flag & 0b100) css += `-webkit-${css}`;
  return css;
};

Additionally prefixValue can accept full declarations to avoid having to apply it before concatenation, which can be useful in case you're trying to minimise string operations:

const declaration = 'position: sticky';
prefixValue(declaration, declaration); // 'position: -webkit-sticky, sticky'

Keywords

FAQs

Package last updated on 19 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc